home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #11 / CD 11 (Black) - 2001.iso / FAVORG / FAVO_SRC.ZIP / MainFrm.h < prev    next >
Encoding:
C/C++ Source or Header  |  2000-10-25  |  1.9 KB  |  72 lines

  1. // FAVORG Version 1.1
  2. // Copyright (c) 2000 Ziff Davis Media, Inc.
  3. // All rights reserved.
  4. // First Published in PC Magazine, US Edition, November 7, 2000.
  5. // Programmer: Patrick Philippot
  6.  
  7. /////////////////////////////////////////////////////////////////////////////
  8.  
  9. #if !defined(AFX_MAINFRM_H__26438FCE_6785_11D4_908E_00A0249EABF4__INCLUDED_)
  10. #define AFX_MAINFRM_H__26438FCE_6785_11D4_908E_00A0249EABF4__INCLUDED_
  11.  
  12. #if _MSC_VER > 1000
  13. #pragma once
  14. #endif // _MSC_VER > 1000
  15.  
  16. class CMainFrame : public CFrameWnd
  17. {
  18.     
  19. protected: // create from serialization only
  20.     CMainFrame();
  21.     DECLARE_DYNCREATE(CMainFrame)
  22.  
  23. // Attributes
  24. public:
  25.  
  26. // Operations
  27. public:
  28.  
  29. // Overrides
  30.     // ClassWizard generated virtual function overrides
  31.     //{{AFX_VIRTUAL(CMainFrame)
  32.     public:
  33.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  34.     virtual void ActivateFrame(int nCmdShow = -1);
  35.     protected:
  36.     virtual BOOL OnCommand(WPARAM wParam, LPARAM lParam);
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. public:
  41.     virtual ~CMainFrame();
  42. #ifdef _DEBUG
  43.     virtual void AssertValid() const;
  44.     virtual void Dump(CDumpContext& dc) const;
  45. #endif
  46.  
  47. protected:  // control bar embedded members
  48.     CStatusBar  m_wndStatusBar;
  49.  
  50. public:
  51.     CStatusBar*    GetStatusBar() {return &m_wndStatusBar;};
  52.  
  53. // Generated message map functions
  54. protected:
  55.     //{{AFX_MSG(CMainFrame)
  56.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  57.     afx_msg void OnWindowPosChanging(WINDOWPOS FAR* lpwndpos);
  58.     afx_msg void OnClose();
  59.     //}}AFX_MSG
  60.     DECLARE_MESSAGE_MAP()
  61. };
  62.  
  63. #define MIN_FRAME_SIZEX 400
  64. #define MIN_FRAME_SIZEY 300
  65.  
  66. /////////////////////////////////////////////////////////////////////////////
  67.  
  68. //{{AFX_INSERT_LOCATION}}
  69. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  70.  
  71. #endif // !defined(AFX_MAINFRM_H__26438FCE_6785_11D4_908E_00A0249EABF4__INCLUDED_)
  72.